NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name change URL to Polish battle.net` // @namespace https://www.icy-veins.com // @description Give me Polish names of gear // @include https://www.icy-veins.com/* // ==/UserScript== var links,thisLink; links = document.evaluate("//a[@href]", document, null, XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE, null); for (var i=0;i<links.snapshotLength;i++) { var thisLink = links.snapshotItem(i); thisLink.href = thisLink.href.replace('http://us.battle.net/d3/en', 'http://eu.battle.net/d3/pl'); }